############################################################
# Parameters for WKG
############################################################

#-----------------------------------------------------------
# Discretization level
#-----------------------------------------------------------
level := 2

#-----------------------------------------------------------
# Names for input and output state files
#-----------------------------------------------------------
in_file  := "in2.sdf"
out_file := "out2.sdf"

#-----------------------------------------------------------
# If non-zero, enables output to .sdf files
#-----------------------------------------------------------
fout := 1

#-----------------------------------------------------------
# Output index vector: 0-* enables output at every 2^l-th 
# time step on level l, provided fout is non-zero
#-----------------------------------------------------------
output := 0-*

#-----------------------------------------------------------
# Number of grid *cells* in base (level 0) grid 
#-----------------------------------------------------------
Nx0 := 16
Ny0 := 16
Nz0 := 16

#-----------------------------------------------------------
# Number of time steps taken is 2^l * iter
#-----------------------------------------------------------
iter := 50

#-----------------------------------------------------------
# Courant factor: dt/dx
#-----------------------------------------------------------
lambda := 0.4

#-----------------------------------------------------------
# Convergence criteria for iterative time-stepping procedure
#-----------------------------------------------------------
epsiter := 1.0e-5

#-----------------------------------------------------------
# Intial data parameters 
#-----------------------------------------------------------
A          := 0.1
deltax     := 0.1
deltay     := 0.1
deltaz     := 0.1 
x0         := 0.0
y0         := 0.0
z0         := 0.0

#-----------------------------------------------------------
# String to prepend to all output filenames
#-----------------------------------------------------------
tag := ""

#-----------------------------------------------------------
# Extrema of spatial domain
#-----------------------------------------------------------
xmin       := -1.0
xmax       :=  1.0
ymin       := -1.0
ymax       :=  1.0
zmin       := -1.0
zmax       :=  1.0
